Scroll Progress Bar

Flash Cards


What storage class is used for function parameters and local variables that are temporary in nature?


Auto

Which storage class specifies that a variable is stored in the CPU registers for faster access?


Register

What storage class is used to declare a variable that can be accessed by other files as well?


Extern

What is the storage class that allocates memory every time a function is called and releases it upon return?


Automatic

What is a macro in C?


Directive

What does a macro do in C?


Substitution

What symbol is used to define a macro in C?


Define

What is the primary purpose of macros in C?


Abstraction

What is the benefit of using macros in C?


Efficiency

What is type casting in C?


Conversion

What is an implicit type cast in C?


Automatic

What is an explicit type cast in C?


Casting

What is a pointer in C?


Variable

What does a pointer store in C?


Address

What is the symbol for the address-of operator in C?


&